home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / internet / eudor154.zip / COMMON.Z / DEFAULT.MOD < prev    next >
Text File  |  1995-12-14  |  2KB  |  66 lines

  1. ;Default:Hayes (unreliable transfers)
  2. ;
  3. ; If you make a change to this file you should change the description (the
  4. ; top line) so that the setup program can distinguish this new setup from
  5. ; the one you changed.  Be sure to rename and copy the modified file to
  6. ; the scripts directory.
  7. ;
  8. ; An explicit \r must be placed at the end of a send line if you wish to
  9. ; terminate the line.  \r\n are stripped to \r.  \n will be sent without
  10. ; translation.
  11. ;
  12. ; Remove this line if you are modifying this file and are using a modem
  13. ; which has a line speed higher than 2400 baud.  
  14. set BaudRate=2400
  15. ;
  16. cancelon ERROR
  17. ;
  18. send AT\r
  19. pause 1
  20. ;
  21. ; Configuration for a generic Hayes modem
  22. ;   &F    - Restore factory defaults
  23. ;   V1    - Verbose responses
  24. ;   X4    - Most verbose/informative responses (for a typical modem)
  25. ;   &C1   - Raise DCD only when carrier is present
  26. ;   S7=60 - modem hangs up after 60 seconds if carrier is not established
  27. ;
  28. send AT &FV1X4&C1&D2S7=60\r
  29. waitfor OK
  30. ;
  31. ;   A detailed discussion of how to setup a modem configuration file can be
  32. ;   found in Appendix E of the Eudora manual.
  33. ;
  34. ;   1.    Enter the command that configures your modem to respond to DTR.
  35. ;
  36. ;   EXAMPLE:  send AT &D2\r
  37. ;
  38. ;
  39. ;   2.    Enter the command that configures your modem for reliable operation
  40. ;    (MNP4 or V.42).
  41. ;
  42. ;   EXAMPLE:  send AT \\N2\r
  43. ;
  44. ;
  45. ;   3.    Enter the command that supports hardware flow control (strongly
  46. ;       recommended.
  47. ;
  48. ;   EXAMPLE:  send AT *FL\r
  49. ;
  50. ;
  51. ;   4.    If you have set your modem to support hardware flow control (as
  52. ;    described in step 3), change the following command that sets the
  53. ;    Eudora FlowControl variable to Hardware.  This command overrides
  54. ;    the FlowControl value in the [Dialup] section of the EUDORA.INI
  55. ;    file (this feature is only available in version 2.0.2 or later).  
  56. ;    This setting must match step 3 or you will lose data and corrupt
  57. ;    mail messages.
  58. ;
  59. set FlowControl=Software
  60. ; set FlowControl=Hardware
  61. ;
  62. ;   5.    Enter the command that fixes (freezes) the modem baud rate.
  63. ;
  64. ;   EXAMPLE:  send AT \\J0\r
  65. ;
  66.